Documentation for the GESIS AppKit

Authors
Published

October 5, 2023

Preface

To learn more about Quarto books visit https://quarto.org/docs/books.

HELLO MAREIKE!

This is the landing/cover/overview page of the book. It needs to be called intro.qmd and this name must not be changed.

The overall settings for the book such as style, theme, title, authors, and overall interactive elements such as table of contents, search functions, pagination, download function etc. are set in the _quarto.yml file. To see an overview of setting options, check: https://quarto.org/docs/reference/projects/books.html

We can add new chapters to the the book by creating new files in the directory ending with .qmd. For example, if we create a new file called summary2.qmd. We can write some text into it and then add it to the book by listing it in the _quarto.yml file under chapters:

Within each chapter, we can structure headlines with # like so:

Headline 1

Headline 2

Headline 3

Headline 4

Headline 5
Headline 6

Markdown Basics

We can make text bold, italicized, strikethrough or use verbatim code highlights:

italics, bold, bold italics

superscript2 / subscript2

strikethrough

verbatim code

inline math: \(E = mc^{2}\)

display math: \[E = mc^{2}\]

Div

Blockquote

Line Block
  Spaces and newlines
  are preserved

endash: –

emdash: —

Images

We can do regular images

Squirrel

We can also do multiple images with layouting

(a) Surus
(b) Hanno
Figure 1.1: Famous Squirrels

We can also change image sizes individually

Frank

 

Bob

Herbert

Lists

We can also create lists

  • unordered list

    • sub-item 1
    • sub-item 2
      • sub-sub-item 1
  • item 2

    Continued (indent 4 spaces)

  1. ordered list
  2. item 2
    1. sub-item 1
      1. sub-sub-item 1
  1. A list whose numbering

continues after

  1. an interruption
  1. A list
  1. Followed by another list
term
definition

Tables

We can also add tables

Right Left Default Center
12 12 12 12
123 123 123 123
1 1 1 1

Diagrams and Flowcharts

We can also add mermaid and graphviz diagrams and flowcharts

flowchart LR
  A[Hard edge] --> B(Round edge)
  B --> C{Decision}
  C --> D[Result one]
  C --> E[Result two]

Videos

We can also embedd videos

Pagebreaks

We can also add pagebreaks. This only affects pdfs but not htmls.

page 1

page 2

Codeblocks

780 + 220

Callout blocks

We can highlight text with callout blocks

Note

Note that there are five types of callouts, including: note, warning, important, tip, and caution.

Warning

This is a red label warning

Tip with Title

This is an example of a callout with a title.

This is an example of a ‘folded’ caution callout that can be expanded by the user. You can use collapse="true" to collapse it by default or collapse="false" to make a collapsible callout that is expanded by default.

Pay Attention

Using callouts is an effective way to highlight content that your reader give special consideration or attention.